var max=0;function AsylumNavLink(parentId,linkId,order,href,linkText,target,width)
{this.linkId=linkId;this.parentId=parentId;this.order=order;this.href=href;this.linkText=linkText;this.target=target;this.width=width;};function AsylumNav(contId,layout,offset)
{this.menuCont=document.getElementById(contId);this.layout=layout;this.offset=(typeof offset=='undefined'?'Right':offset);this.menuItems=new Object();this.clickUnderCreated=false;};AsylumNav.prototype.AddLink=function(parentId,linkId,order,href,linkText,target,width)
{if(typeof this.menuItems[parentId]=='undefined')
{this.menuItems[parentId]=new Object();}
if(typeof width=="undefined")width=false;this.menuItems[parentId][linkId]=new AsylumNavLink(parentId,linkId,order,href,linkText,target,width);if(order>max){max=order;}};AsylumNav.prototype.CreateLevel=function(levelId,idPrefix)
{obj=this;div=document.createElement('div');div.id=idPrefix+levelId;div.levelId=levelId;div.idPrefix=idPrefix;div.className='levelDiv';div.onmouseout=function(e){obj.HideLevel(e);};div.subLevels=new Object();if(levelId!='0')
{div.style.visibility='hidden';div.className+=' subLevel';div.style.position='absolute';}
else
{div.className+=' topLevel';}
if(this.layout=='Horizontal')
{div.style.position='absolute';}
div.style.zIndex=10;if(this.menuCont){this.menuCont.appendChild(div);}
for(i=0;i<=max;i++){for(linkId in this.menuItems[levelId]){if(this.menuItems[levelId][linkId].order==i){linkDiv=document.createElement('div');linkDiv.id='asylumNavLinkDiv'+linkId;linkDiv.linkId=linkId;linkDiv.levelId=levelId;linkDiv.className='linkDiv';if(levelId=="0"){linkDiv.className+=" topLevel";if(this.menuItems[levelId][linkId].width){linkDiv.style.width=this.menuItems[levelId][linkId].width+"px";}}
div.appendChild(linkDiv);navLink=this.menuItems[levelId][linkId];a=document.createElement('a');a.id='asylumNavLink'+linkId;a.linkType='navMenu';a.linkId=linkId;a.levelId=navLink.parentId;a.parentId=navLink.parentId;if(navLink.href==''||navLink.href=='#')
{a.href='#';a.target='';a.style.cursor='default';}
else
{a.href=navLink.href;a.target=navLink.target;}
if(this.layout=='Vertical')
{a.innerHTML=navLink.linkText;}
else
{a.innerHTML=navLink.linkText.split(' ').join('&nbsp;');}
a.onmouseover=function(){obj.ShowLevel(this);};linkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';linkDiv.className+=' activeLink';topLink=this.GetTopLevelLink(navLink);if(typeof this.menuItems[topLink.linkId]!='undefined'&&navLink.levelId!='0')
{try{document.getElementById('asylumNavLink'+topLink.linkId).className+=' activeLink';document.getElementById('asylumNavLinkDiv'+topLink.linkId).className+=' activeLink';}catch(e){}}
if(document.getElementById("clickUnder")!=null)
{this.CreateClickUnder(topLink,true);}}
else
{}
if(typeof this.menuItems[linkId]!='undefined')
{div.subLevels[linkId]=true;}}}}
return div;};AsylumNav.prototype.Construct=function()
{if(this.menuCont==null){return;}
var obj=this;for(levelId in this.menuItems)
{this.CreateLevel(levelId,'asylumNavLevel');}
if(this.layout=='Vertical')
{if(typeof document.getElementById('tplMainSectors')!=null)
{ms=document.getElementById('tplMainSectors');ms.style.height=ms.offsetHeight;}}
else
{this.menuCont.style.height=document.getElementById('asylumNavLevel0').offsetHeight+'px';}
this.CreateBreadCrumbs();};AsylumNav.prototype.CreateClickUnder=function(navLink,active)
{if(typeof doneClickUnder=="undefined"){doneClickUnder=true;}else{return;}
if(document.getElementById("clickUnder")==null)return;obj=this;var linkId;if(this.layout=='Vertical')
{clickDiv=document.createElement('div');clickDiv.id="clickUnder";document.getElementById("clickUnder").appendChild(clickDiv);linkDiv=document.getElementById('asylumNavLinkDiv'+navLink.linkId);linkDiv.appendChild(clickDiv);}
else
{clickDiv=document.getElementById("clickUnder");}
var linkCount=0;for(linkId in this.menuItems[navLink.linkId])
{linkCount++;clickLinkDiv=document.createElement('div');clickLinkDiv.className='clickLinkDiv';clickLink=this.menuItems[navLink.linkId][linkId];txt=document.createTextNode(' ');clickDiv.appendChild(txt);a=document.createElement('a');a.id='asylumNavClickLink'+clickLink.linkId;a.className='clickLink';a.linkType='clickLink';a.linkId=linkId;a.levelId=clickLink.parentId;a.parentId=clickLink.parentId;if(clickLink.href==''||clickLink.href=='#'){a.href='#';a.target='';a.style.cursor='default';}else{a.href=clickLink.href;a.target=clickLink.target;}
if(this.layout=="Vertical"){a.innerHTML=clickLink.linkText;}else if(this.layout=="Horizontal-SubMenu"){if(clickLink.linkText.substring(0,1)==" "){a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}else{a.innerHTML=clickLink.linkText;}}else{a.innerHTML=clickLink.linkText.split(" ").join("&nbsp;");}
a.onmouseover=function(){obj.HideAllLevels();obj.ShowLevel(this);};a.onmouseout=function(e){obj.HideLevel(e);};clickLinkDiv.appendChild(a);if(linkId==pageId)
{a.className='activeLink';clickLinkDiv.className+=' activeLink';}
clickDiv.appendChild(clickLinkDiv);txt=document.createTextNode(' ');clickDiv.appendChild(txt);}
if(linkCount==0||active==false)
{clickDiv.className='inactiveClickUnder';}
else
{clickDiv.className='activeClickUnder';}};AsylumNav.prototype.GetTopLevelLink=function(navLink)
{if(navLink.parentId=='0')
{return(navLink);}
while(1==1)
{navLink=this.GetParentLink(navLink);if(typeof navLink.parentId!='undefined')
{if(navLink.parentId=='0')
{break;}}}
return(navLink);};AsylumNav.prototype.GetParentLink=function(navLink)
{var levelId;var linkId;for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{parNavLink=this.menuItems[levelId][linkId];if(parNavLink.linkId==navLink.parentId)
{return(parNavLink);}}}};AsylumNav.prototype.GetXPos=function(obj)
{var curleft=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curleft+=obj.offsetLeft;obj=obj.offsetParent;}}
else if(obj.x)
curleft+=obj.x;return curleft;};AsylumNav.prototype.GetYPos=function(obj)
{var curtop=0;if(obj.offsetParent)
{while(obj.offsetParent&&obj.id!='navMenuCont')
{curtop+=obj.offsetTop;obj=obj.offsetParent;}}
else if(obj.y)
curtop+=obj.y;return curtop;};AsylumNav.prototype.ShowLevel=function(el)
{levelId=el.linkId;this.currentLevelId=levelId;window.clearTimeout(this.timeoutId);this.HideSubLevels(el.levelId);if(typeof this.menuItems[levelId]=='undefined')
{return;}
if(el.linkType=='clickLink')
{eP=document.getElementById('asylumNavClickLink'+el.linkId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'subLevel','clickUnderSubLevel');}
else
{eP=document.getElementById('asylumNavLink'+levelId);eL=document.getElementById('asylumNavLevel'+levelId);SwapClass(eL,'clickUnderSubLevel','subLevel');}
if(eP.parentId=='0')
{switch(this.offset)
{case'Right':offsetX=(eP.offsetWidth);offsetY=0;break;case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;case'Bottom':offsetX=0;offsetY=eP.offsetHeight;eL.style.minWidth=eP.offsetWidth;break;}}
else
{switch(this.offset)
{case'Left':offsetX=(-eL.offsetWidth);offsetY=0;break;default:offsetX=(eP.offsetWidth);offsetY=0;break;}}
pX=this.GetXPos(eP);pY=this.GetYPos(eP);lX=pX+offsetX;lY=pY+offsetY;eL.style.position='absolute';$(eL).css({left:lX,top:lY});eL.style.visibility='visible';};AsylumNav.prototype.GetLevelWidth=function(levelId)
{maxWidth=0;for(linkId in this.menuItems[levelId])
{a=document.getElementById('asylumNavLink'+linkId);thisWidth=a.offsetWidth;if(thisWidth>maxWidth)
{maxWidth=thisWidth;}}
return(maxWidth);};AsylumNav.prototype.HideSubLevels=function(levelId,omitLevelId)
{if(typeof omitLevelId=='undefined')
{omitLevelId='0';}
eL=document.getElementById('asylumNavLevel'+levelId);for(levelId in eL.subLevels)
{this.HideSubLevels(levelId);if(levelId!=omitLevelId)
{eL=document.getElementById('asylumNavLevel'+levelId);eL.style.visibility='hidden';}}};AsylumNav.prototype.HideLevel=function(e)
{window.clearTimeout(this.timeoutId);if(!e)e=window.event;var el=(e.relatedTarget)?e.relatedTarget:e.toElement;var obj=this;var funct=function(){obj._HideLevel(el);};this.timeoutId=window.setTimeout(funct,1000);};AsylumNav.prototype._HideLevel=function(el)
{if(!el||el.id.substr(0,9)!='asylumNav'||(el.id.substr(0,9)=='asylumNav'&&el.style.visibility=='hidden'))
{this.HideAllLevels();}};AsylumNav.prototype.HideAllLevels=function()
{for(levelId in this.menuItems)
{if(levelId!='0')
{eL=document.getElementById('asylumNavLevel'+levelId);if(eL!=null)eL.style.visibility='hidden';}}};AsylumNav.prototype.CreateBreadCrumbs=function()
{if(document.getElementById("breadCrumbs")!=null)
{crumbsCont=document.getElementById("breadCrumbs");crumbsCont.style.display='none';crumbs='';homeLink='';for(levelId in this.menuItems)
{for(linkId in this.menuItems[levelId])
{navLink=this.menuItems[levelId][linkId];if(homeLink=='')
{homeLink='<a href="'+navLink.href+'" target="'+navLink.target+'">'
+navLink.linkText+'</a> &gt; ';}
if(linkId==pageId)
{i=0;parNavLink=this.GetParentLink(navLink);while(typeof parNavLink=='object')
{i++;crumbs='<a href="'+parNavLink.href+'" target="'+parNavLink.target+'">'
+parNavLink.linkText+'</a> &gt; '+crumbs;parNavLink=this.GetParentLink(parNavLink);}
if(i>1)
{crumbsCont.style.display='block';crumbsCont.innerHTML=homeLink+crumbs+'<span class="activeCrumb">'+navLink.linkText+'</span>';}
return(true);}}}}};function RemoveClass(el,className)
{var replaceName=(el.className.match(' '+className)?' '+className:className);el.className=el.className.replace(replaceName,'');};function AddClass(el,className)
{RemoveClass(el,className);el.className+=' '+className;};function SwapClass(el,removeClassName,addClassName)
{RemoveClass(el,removeClassName);AddClass(el,addClassName);};;$(function() {for (var i in tasks) {window.setTimeout(tasks[i], 0);}});function initMenu(){};$(function(){$("#navMenu").navmenu({pageInfo:{"a43476":{"P":0,"ID":364295,"C":43476,"O":0,"U":"http:\/\/www.projectplusgroup.co.nz\/","N":"Home","T":"_top","R":"","RT":"_blank"},"a49199":{"P":43476,"ID":49200,"C":49199,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-portfolio.html","N":"About us","T":"_top","R":"","RT":"_blank"},"a43477":{"P":49199,"ID":44825,"C":43477,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/senior-portfolio-program.html","N":"The Directors","T":"_top","R":"","RT":"_blank"},"a43478":{"P":43476,"ID":45928,"C":43478,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/pm-consultant-training.html","N":"News","T":"_top","R":"","RT":"_blank"},"a43479":{"P":43476,"ID":45920,"C":43479,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/project-consultancy-mentoring.html","N":"Consultancy","T":"_top","R":"","RT":"_blank"},"a62976":{"P":43479,"ID":62983,"C":62976,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/strategic-project-management.html","N":"Strategic Advice &amp; Business Planning","T":"_top","R":"","RT":"_blank"},"a62977":{"P":43479,"ID":62984,"C":62977,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/project-review-project.html","N":"Project Review Audit and\/or IQA","T":"_top","R":"","RT":"_top"},"a62978":{"P":43479,"ID":62985,"C":62978,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/pm-capability-maturity.html","N":"PM Capability Maturity Assessments &amp; Benchmarking","T":"_top","R":"","RT":"_blank"},"a62979":{"P":43479,"ID":62986,"C":62979,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-methodologies.html","N":"Methodologies, Guides &amp; Processes","T":"_top","R":"","RT":"_blank"},"a62980":{"P":43479,"ID":62987,"C":62980,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-coaching.html","N":"Project Coaching and\/or Mentoring ","T":"_top","R":"","RT":"_blank"},"a62981":{"P":43479,"ID":62988,"C":62981,"O":"6","U":"http:\/\/www.projectplusgroup.co.nz\/pm-coaching-pm.html","N":"Alliances ","T":"_top","R":"","RT":"_blank"},"a62982":{"P":43479,"ID":62989,"C":62982,"O":"7","U":"http:\/\/www.projectplusgroup.co.nz\/change-management-techniques.html","N":"Change Management","T":"_top","R":"","RT":"_blank"},"a43480":{"P":43476,"ID":45921,"C":43480,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-services.html","N":"Services","T":"_top","R":"","RT":"_blank"},"a64090":{"P":43480,"ID":64093,"C":64090,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-office.html","N":"Programme and\/or Project Management Office","T":"_top","R":"","RT":"_blank"},"a64089":{"P":43480,"ID":64094,"C":64089,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/pm-work-breakdown.html","N":"Programme and\/or Project Planning &amp; Scheduling","T":"_top","R":"","RT":"_blank"},"a64088":{"P":43480,"ID":64095,"C":64088,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/pm-preparation-documents.html","N":"Procurement and\/or Contract Management &amp; Administration","T":"_top","R":"","RT":"_blank"},"a64087":{"P":43480,"ID":64096,"C":64087,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/cost-management-project.html","N":"Programme and\/or Project Cost Management","T":"_top","R":"","RT":"_blank"},"a64086":{"P":43480,"ID":64097,"C":64086,"O":"6","U":"http:\/\/www.projectplusgroup.co.nz\/portfolio-management-risk.html","N":"Programme and\/or Project Risk Management","T":"_top","R":"","RT":"_blank"},"a64085":{"P":43480,"ID":64098,"C":64085,"O":"7","U":"http:\/\/www.projectplusgroup.co.nz\/project-facilitation-project.html","N":"Facilitation and Speaking Services","T":"_top","R":"","RT":"_blank"},"a64084":{"P":43480,"ID":64099,"C":64084,"O":"8","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-software.html","N":"PM Information System Evaluation","T":"_top","R":"","RT":"_blank"},"a43481":{"P":43476,"ID":45922,"C":43481,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/pm-training-tools.html","N":"Training","T":"_top","R":"","RT":"_blank"},"a46545":{"P":43481,"ID":46548,"C":46545,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/project-based-management.html","N":"Core Skills Programme","T":"_top","R":"","RT":"_blank"},"a46559":{"P":46545,"ID":47704,"C":46559,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/learn-essential-project.html","N":"Essential Skills for Managing Projects (2 days)","T":"_top","R":"","RT":"_blank"},"a47912":{"P":46545,"ID":47913,"C":47912,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/project-leadership-courses.html","N":"Project Leadership (2 days)","T":"_top","R":"","RT":"_blank"},"a91108":{"P":46545,"ID":91118,"C":91108,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/pm-communication-skills.html","N":"People Skills in Project Management (1 day)","T":"_top","R":"","RT":"_blank"},"a47905":{"P":46545,"ID":47908,"C":47905,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/learn-project-management.html","N":"Understanding Project Management (1 day)","T":"_top","R":"","RT":"_blank"},"a46546":{"P":43481,"ID":46549,"C":46546,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/ongoing-professional-development.html","N":"Specialist Skills Programme","T":"_top","R":"","RT":"_blank"},"a107335":{"P":46546,"ID":107336,"C":107335,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/stakeholder-management-workshop.html","N":"Practical Stakeholder Management ","T":"_top","R":"","RT":"_blank"},"a496010":{"P":46546,"ID":496132,"C":496010,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/business-change-management.html","N":"Business Change Management","T":"_top","R":"","RT":"_blank"},"a496455":{"P":46546,"ID":496463,"C":496455,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/managing multiple priorities.html","N":"Managing Multiple Priorities","T":"_top","R":"","RT":"_blank"},"a48497":{"P":46546,"ID":48515,"C":48497,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/good-project-planning.html","N":"Project Planning and Control (1 day)","T":"_top","R":"","RT":"_blank"},"a91299":{"P":46546,"ID":91320,"C":91299,"O":"6","U":"http:\/\/www.projectplusgroup.co.nz\/learn-microsoft-project.html","N":"Microsoft Project (2 days)","T":"_top","R":"","RT":"_blank"},"a48499":{"P":46546,"ID":48517,"C":48499,"O":"7","U":"http:\/\/www.projectplusgroup.co.nz\/learn-pm-risk.html","N":"Project Risk Management (1 day)","T":"_top","R":"","RT":"_blank"},"a48488":{"P":46546,"ID":48508,"C":48488,"O":"8","U":"http:\/\/www.projectplusgroup.co.nz\/pm-cost-management.html","N":"Project Cost Management (1 day)","T":"_top","R":"","RT":"_blank"},"a48493":{"P":46546,"ID":48511,"C":48493,"O":"9","U":"http:\/\/www.projectplusgroup.co.nz\/establish-project-office.html","N":"Programme\/Project Office, Estblsh &amp; Mnge (1 day)","T":"_top","R":"","RT":"_blank"},"a48496":{"P":46546,"ID":48514,"C":48496,"O":"10","U":"http:\/\/www.projectplusgroup.co.nz\/project-procurement-course.html","N":"Project Procurement\/Contract Management (1 day)","T":"_top","R":"","RT":"_blank"},"a48495":{"P":46546,"ID":48513,"C":48495,"O":"12","U":"http:\/\/www.projectplusgroup.co.nz\/project-engineering-workshop.html","N":"A Passage Through Project Engineering (4 days)","T":"_top","R":"","RT":"_blank"},"a48494":{"P":46546,"ID":48512,"C":48494,"O":"13","U":"http:\/\/www.projectplusgroup.co.nz\/7-management-planning.html","N":"The 7 Management &amp; Planning Tools (2 days)","T":"_top","R":"","RT":"_blank"},"a48500":{"P":46546,"ID":48518,"C":48500,"O":"14","U":"http:\/\/www.projectplusgroup.co.nz\/ams-real-time.html","N":"AMS REALTIME Solutions (1 or 2 days)","T":"_top","R":"","RT":"_blank"},"a48490":{"P":46546,"ID":48509,"C":48490,"O":"15","U":"http:\/\/www.projectplusgroup.co.nz\/how-determine-project.html","N":"Determining Your Project Requirements (1 day)","T":"_top","R":"","RT":"_blank"},"a48946":{"P":43481,"ID":48947,"C":48946,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/gain-business-related.html","N":"Executive Skills Programme","T":"_top","R":"","RT":"_blank"},"a153828":{"P":48946,"ID":153829,"C":153828,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/creating-good-governance---0.5-day-.html","N":"Creating Good Governance  (0.5 day)","T":"_top","R":"","RT":"_blank"},"a48485":{"P":48946,"ID":48530,"C":48485,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/pm-business-benefits.html","N":"Business Benefits Realisation (1 day)","T":"_top","R":"","RT":"_blank"},"a48527":{"P":48946,"ID":48531,"C":48527,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/portfolio-management-programme.html","N":"Portfolio and Programme Management (1 day)","T":"_top","R":"","RT":"_blank"},"a48528":{"P":48946,"ID":48532,"C":48528,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/pm-executive-overview.html","N":"Executive Overview (0.5 day)","T":"_top","R":"","RT":"_blank"},"a153845":{"P":43481,"ID":155906,"C":153845,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/certificate-programme.html","N":"Certificate Programmes","T":"_top","R":"","RT":"_blank"},"a289090":{"P":153845,"ID":289096,"C":289090,"O":"1","U":"http:\/\/www.projectplusgroup.co.nz\/certificate-project-administration.html","N":"Certificate in Project Administration","T":"_top","R":"","RT":"_blank"},"a153848":{"P":153845,"ID":155920,"C":153848,"O":"2","U":"http:\/\/www.projectplusgroup.co.nz\/certificate-project-coordination.html","N":"Certificate in Project Coordination","T":"_top","R":"","RT":"_blank"},"a153850":{"P":153845,"ID":153851,"C":153850,"O":"3","U":"http:\/\/www.projectplusgroup.co.nz\/certificate-in-project-management.html","N":"Certificate in Project Management","T":"_top","R":"","RT":"_blank"},"a48506":{"P":153845,"ID":48524,"C":48506,"O":"4","U":"http:\/\/www.projectplusgroup.co.nz\/pmp-certification-programme.html","N":"Gaining PMP Certification Study Programme","T":"_top","R":"","RT":"_blank"},"a48498":{"P":153845,"ID":48516,"C":48498,"O":"5","U":"http:\/\/www.projectplusgroup.co.nz\/prepare-pmp-certification.html","N":"PMP\u00ae Prep (2 days)","T":"_top","R":"","RT":"_blank"},"a48507":{"P":153845,"ID":48525,"C":48507,"O":"6","U":"http:\/\/www.projectplusgroup.co.nz\/capm-certification-course.html","N":"Gaining CAPM Certification Study Programme","T":"_top","R":"","RT":"_blank"},"a48491":{"P":153845,"ID":48510,"C":48491,"O":"7","U":"http:\/\/www.projectplusgroup.co.nz\/prepare-capm-certification.html","N":"CAPM\u00ae Prep (2 days)","T":"_top","R":"","RT":"_blank"},"a47907":{"P":153845,"ID":47911,"C":47907,"O":"8","U":"http:\/\/www.projectplusgroup.co.nz\/prince2-foundation-course.html","N":"PRINCE2 Foundation (3 days)","T":"_top","R":"","RT":"_blank"},"a260423":{"P":153845,"ID":260439,"C":260423,"O":"9","U":"http:\/\/www.projectplusgroup.co.nz\/PRINCE2-Practitioner-2.html","N":"PRINCE2 Practitioner (2 days)","T":"_top","R":"","RT":"_blank"},"a347930":{"P":153845,"ID":347931,"C":347930,"O":"10","U":"http:\/\/www.projectplusgroup.co.nz\/prince2-re-registration-practitioner--2-days-.html","N":"PRINCE2 Practitioner Re registration (2 days)","T":"_top","R":"","RT":"_blank"},"a45914":{"P":43476,"ID":342452,"C":45914,"O":"6","U":"http:\/\/products.projectplusgroup.co.nz","N":"Products","T":"_top","R":"http:\/\/products.projectplusgroup.co.nz","RT":"_top"},"a45915":{"P":43476,"ID":45924,"C":45915,"O":"7","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-recruiting.html","N":"Clients","T":"_top","R":"","RT":"_blank"},"a105018":{"P":43476,"ID":105024,"C":105018,"O":"8","U":"http:\/\/www.projectplusgroup.co.nz\/lead-project-based.html","N":"Careers","T":"_top","R":"","RT":"_blank"},"a45916":{"P":43476,"ID":45925,"C":45916,"O":"9","U":"http:\/\/www.projectplusgroup.co.nz\/project-manager-consultant.html","N":"Links","T":"_top","R":"","RT":"_blank"},"a45917":{"P":43476,"ID":45926,"C":45917,"O":"11","U":"http:\/\/www.projectplusgroup.co.nz\/project-management-consulting.html","N":"Contact Us","T":"_top","R":"","RT":"_blank"}},alignment:"Horizontal",animate:0})});